home *** CD-ROM | disk | FTP | other *** search
- #ifndef _HYPERTEXT_VIEW_H_
- #define _HYPERTEXT_VIEW_H_
-
- #include "outwin.h"
- #include "blk.h"
-
- class HypertextView : public Block
- {
- protected:
- Element* home_element; Element* end_element;
- OutputWindow* view_win;
- public:
- HypertextView(rect coordinates, char* vName, char* fName = "",
- int res = FIXED,
- int interv = pScreenSet->sub_interval,
- BORDERS b_type = SHOW_BORDER, int s = 10, char* h = "",
- int bak = pColorSet->colors.BAK_COLOR,
- int attr = pColorSet->colors.ATTR_COLOR,
- int p_height = st_page_height);
- virtual void rearrange();
- void jmp_to(char* context) { view_win->jmp_to(context); }
- };
-
- #endif _HYPERTEXT_VIEW_H_